.card-radius {
    padding: 2rem;
    display: block;
    border-radius: 20px;
    text-decoration: none;
    color: var(--main-text);
    background-color: var(--main-lightgray);
    background-repeat: no-repeat;
    background-size: cover;
    /*height: 100%;*/
    margin-top: 1rem;
}

a.card-radius:hover {
    color: var(--main-text);
    background-color: var(--main-lightgray-hover) !important;
    text-decoration: none;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.card-radius h3 {
    font-size: 1.6rem;
}


.carousel-mobile {
    padding-left: 2rem;
}
.carousel-mobile .card-radius {
    height: 400px;
}

@media screen and (min-width: 992px) {
    .card-radius {
        height: 100%;
    }

    .carousel-mobile .card-radius {
        height: 480px;
    }
}

.card-button {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 400px;
    text-align: center;
    color: var(--surface-white);
    margin-bottom: 2rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}